-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
63 lines (59 loc) · 1.44 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
55
56
57
58
59
60
61
62
63
from setuptools import setup
import re
with open('README.md', 'r') as f:
long_description = f.read()
with open('conjure/__init__.py', 'r') as fd:
version = re.search(
r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
fd.read(),
re.MULTILINE).group(1)
with open('requirements.txt', 'r') as f:
requirements = f.readlines()
setup(
name='conjure',
version=version,
url='https://github.com/JohnVinyard/conjure',
author='John Vinyard',
author_email='[email protected]',
long_description=long_description,
packages=['conjure'],
download_url=f'https://github.com/jvinyard/conjure/tarball/{version}',
requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
],
entry_points={
'console_scripts': [
'conjure-markdown = conjure.conjure_markdown:main'
]
},
install_requires=[
'lmdb',
'boto3',
'numpy',
'torch',
'dill',
'falcon',
'gunicorn',
'requests',
'markdown',
'inotify'
],
setup_requires=[
'urllib3<1.27,>=1.25.4'
'lmdb',
'boto3',
'numpy',
'torch',
'dill',
'falcon',
'gunicorn',
'requests',
'markdown',
'inotify'
],
include_package_data=True,
package_data={
'': ['dashboard.html', 'dashboard.mjs', 'imports.json', 'style.css']
},
)