-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (36 loc) · 1.06 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
#!/usr/bin/env python
from setuptools import setup, find_packages
with open('README.rst', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='synamic',
version='0.7.1.dev7',
description='Synamic',
author='Md. Sabuj Sarker',
author_email='[email protected]',
url='https://github.com/SabujXi/Synamic',
packages=find_packages('src'),
# packages=find_packages('src', exclude=('synamic',)),
package_dir={'': 'src'},
entry_points={
'console_scripts': [
'synamic = synamic.entry_points.synamic_shell:main'
]
},
data_files=[('', ['README.rst', 'LICENSE'])],
package_data={
'': ['*.model', '*.syd', '*.txt', '*.rst', '*.md', '*.markdown'],
},
install_requires=[
'Jinja2>=2.10',
'MarkupSafe>=1.0',
'libsass>=0.15.0',
'mistune>=0.8.3',
'Pillow>=5.2.0',
'sly>=0.3',
'aiohttp>=3.4.4',
],
python_requires='>=3.6',
long_description=long_description
)
# print(find_packages('src', exclude=('synamic',)))