-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (49 loc) · 1.38 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
from os.path import join, dirname
from setuptools import setup, find_packages
def get_version():
fname = join(dirname(__file__), "src/exco/__version__.py")
with open(fname) as f:
ldict = {}
code = f.read()
exec(code, globals(), ldict) # version defined here
return ldict['version']
setup(name='exco',
version=get_version(),
description='Excel Comment Orm',
long_description=open('README.md').read().strip(),
long_description_content_type='text/markdown',
author='Piti Ongmongkolkul',
author_email='[email protected]',
url='https://github.com/thegangtechnology/exco',
package_dir={'': 'src'},
packages=find_packages('src'),
py_modules=['exco'],
entry_points={
'console_scripts': ['exco_watch_simple=exco.exco_watch:ExcoWatch.main'],
},
install_requires=[
'openpyxl',
'pyyaml',
'stringcase',
'watchdog'
],
extras_require={
'dev': [
'ipykernel',
'mypy',
'autopep8',
'pytest',
'pytest-cov',
'wheel',
'flake8'
],
'test': [
'pytest',
'pytest-cov',
'flake8'
]
},
license='Private',
zip_safe=False,
keywords='',
classifiers=[''])