-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
38 lines (34 loc) · 1.01 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
35
36
37
38
import os
from setuptools import setup
base_dir = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(base_dir, 'README.rst')) as fp:
long_description = fp.read()
setup(
name='gibberish',
description="A pseudo-word generator",
version='0.4.0',
author='Gregory Haskins',
author_email='greg@greghaskins.com',
url='https://github.com/greghaskins/gibberish',
packages=('gibberish',),
license='MIT License',
long_description=long_description,
long_description_content_type='text/x-rst',
install_requires=['PyYAML'],
package_data={
'gibberish': ['database/*'],
},
extras_require={
'dev': ['nltk']
},
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
entry_points={
'console_scripts': 'gibberish = gibberish:console_main',
}
)