-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
executable file
·34 lines (30 loc) · 1.03 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
import setuptools
def setup_package():
long_description = "hyperformer"
with open('requirements.txt') as f:
required = f.read().splitlines()
setuptools.setup(
name='hyperformer',
version='0.0.1',
description='HyperFormer',
long_description=long_description,
long_description_content_type='text/markdown',
license='MIT License',
packages=setuptools.find_packages(
exclude=['docs', 'tests', 'scripts', 'examples']),
dependency_links=[
'https://download.pytorch.org/whl/torch_stable.html',
],
install_requires = required,
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
],
keywords='text nlp machinelearning',
)
if __name__ == '__main__':
setup_package()