-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
46 lines (42 loc) · 1.71 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
39
40
41
42
43
44
45
46
#!/usr/bin/env python
from setuptools import setup
with open('README.rst') as file_desc:
long_desc = file_desc.read()
setup(name='surrealism',
version='1.1.0',
# packages = find_packages(),
#packages=["surrealism"],
author='Ian Havelock',
author_email='[email protected]',
url='http://morrolan.github.io/surrealism',
license='GNU General Public License (GPL)',
description='Surreal sentence and error message generator.',
long_description=long_desc,
platforms=['Windows', 'Unix', 'OS X'],
download_url="https://pypi.python.org/pypi/surrealism/",
keywords=["surreal", "surrealism", "error message", "fault"],
classifiers=
[
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Development Status :: 5 - Production/Stable',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Other Audience',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Topic :: Education',
'Topic :: Communications',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=['setuptools'],
package_data={'surrealism': ['surrealism.sqlite']},
zip_safe=False,
)