-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
69 lines (65 loc) · 2.46 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
import codecs
from setuptools import setup
from vcardgen.version import __version__
from vcardgen import __doc__
install_requires=[
'PyZufall>=0.13.1',
'frogress>=0.9.1',
'argparse',
'future'
]
if sys.version_info[0] == 2:
install_requires.append('kitchen')
setup(
name='vcardgen',
version=__version__,
url='https://github.com/davidak/random-vcard-generator/',
license='GPLv3',
author='davidak',
author_email='[email protected]',
keywords=('random vcard generator test import export'),
platforms='any',
description=__doc__,
long_description=codecs.open('README.rst', 'r', 'utf-8').read(),
packages=['vcardgen'],
entry_points = {
'console_scripts': ['vcardgen = vcardgen.main:main'],
},
install_requires=install_requires,
classifiers=[
#'Development Status :: 1 - Planning',
#'Development Status :: 2 - Pre-Alpha',
#'Development Status :: 3 - Alpha',
'Development Status :: 4 - Beta',
#'Development Status :: 5 - Production/Stable',
#'Development Status :: 6 - Mature',
#'Development Status :: 7 - Inactive',
#'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
#'Programming Language :: Python :: 3.0',
#'Programming Language :: Python :: 3.1',
#'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
#'Programming Language :: Python :: Implementation :: IronPython',
#'Programming Language :: Python :: Implementation :: Jython',
'Programming Language :: Python :: Implementation :: PyPy',
#'Programming Language :: Python :: Implementation :: Stackless',
'Intended Audience :: System Administrators',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
'Topic :: Utilities',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: German',
'Environment :: Console',
'Operating System :: OS Independent',
]
)