-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
46 lines (41 loc) · 1.32 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
# coding: utf-8
import os.path
from setuptools import setup, find_packages
about = {}
package_meta_path = os.path.join(
os.path.dirname(__file__), 'programslice', 'package.py')
with open(package_meta_path) as fp:
exec(fp.read(), about)
setup(name=about['__name__'],
version=about['__version__'],
description='Static analysis tool for python',
long_description=(
open('README.rst').read() + '\n\n' +
open('docs/CHANGES.rst').read()
),
keywords='static analysis',
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development',
],
author=u'Róman Joost',
author_email='[email protected]',
url='https://github.com/romanofski/programslice',
license='GPLv3',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[],
extras_require=dict(
test=[]
),
entry_points={
'console_scripts': [
'programslice = programslice:command_slice_file',
]
}
)