-
Notifications
You must be signed in to change notification settings - Fork 121
/
setup.py
43 lines (39 loc) · 1.34 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
#!/usr/bin/env python
from setuptools import setup, find_packages
def install():
required = []
with open('requirements.txt') as f:
requirements = f.read().splitlines()
for req in requirements:
p = req.split('==')
required.append(p[0])
desc = ''
setup(
name='py-hanspell',
version='1.1',
description=desc,
long_description=desc,
author='SuHun Han',
author_email='[email protected]',
url='https://github.com/ssut/py-hanspell',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Education',
'Intended Audience :: End Users/Desktop',
'License :: Freeware',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Topic :: Education',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4'
],
packages=find_packages(),
install_requires=required,
)
if __name__ == "__main__":
install()