-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
36 lines (29 loc) · 943 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
33
34
35
import os
import pkg_resources
from setuptools import setup, find_packages
with open('README.rst') as f:
long_description = f.read()
setup(
name='meerqat',
packages=find_packages(),
install_requires=[
str(r)
for r in pkg_resources.parse_requirements(
open(os.path.join(os.path.dirname(__file__), "requirements.txt"))
)
],
long_description=long_description,
long_description_content_type='text/markdown',
author='Paul Lerner',
author_email='[email protected]',
url='https://github.com/PaulLerner/ViQuAE',
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering"
],
)