-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (30 loc) · 1.15 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
from setuptools import setup, find_packages
with open("requirements.txt") as f:
required = f.read().splitlines()
setup(
name="gowpy",
version="0.2.0",
description="A very simple graph-of-words library for NLP",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
author="Guillaume Dubuisson Duplessis",
author_email="[email protected]",
url="https://github.com/GuillaumeDD/gowpy.git",
packages=find_packages(exclude="tests"),
license="new BSD",
install_requires=required,
include_package_data=True,
python_requires=">=3.6",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)