-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
32 lines (28 loc) · 984 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import os
from distutils.core import setup
def get_version():
with open(os.path.join('onepy', '__init__.py')) as f:
for line in f:
if line.startswith('__version__ ='):
return line.split('=')[1].strip().strip('"\'')
setup(
name = 'onepy',
packages = ['onepy'],
version = get_version(),
description = 'OneNote Object Model',
author='Varun Srinivasan',
author_email='[email protected]',
url="https://github.com/varunsrin/one-py",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Environment :: Win32 (MS Windows)',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
],
test_suite="tests"
)