forked from luca-drf/DMMG
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (26 loc) · 760 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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "DMMG",
version = "0.1",
author = "Luca Da Rin Fioretto, Federico Campeotto",
author_email = "Luca Da Rin Fioretto <[email protected]>,\
Federico Campeotto <[email protected]>",
description = (""),
license = "Apache License v2",
keywords = "",
url = "https://github.com/radome/DMMG",
packages = ['dmmg', 'dmmg/tests'],
install_requires=[
'nltk',
'numpy',
],
long_description = read('README.rst'),
classifiers=[
"Development Status :: 1 - Planning",
"Topic :: NLP",
"License :: Apache License v2",
],
)