-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (30 loc) · 972 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
"""setup.py file for packaging negations."""
from setuptools import setup
with open('readme.md', 'r') as readme_file:
readme = readme_file.read()
setup(
name='negations',
version='0.0.1',
description='description here',
long_description=readme,
url='https://github.com/{url_here}',
author='Your Name',
author_email='your_email_here',
keywords='keyword1, keyword2',
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
],
license='Apache',
packages=['negations'],
package_dir={'': 'src'},
scripts=[],
install_requires=[],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
include_package_data=True,
python_requires='>= 3.8',
zip_safe=False)