-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
35 lines (31 loc) · 1.05 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
from setuptools import setup, find_packages
def get_long_desc():
with open("pypi-readme.md", "r") as readme:
desc = readme.read()
return desc
def setup_package():
setup(
name='pycg-stitch',
version='0.0.9',
description='Stitcher for FASTEN Python call graphs',
long_description=get_long_desc(),
long_description_content_type="text/markdown",
url='https://github.com/fasten-project/pycg-stitch',
license='Apache Software License',
packages=find_packages(),
install_requires=['flask'],
include_package_data=True,
entry_points = {
'console_scripts': [
'pycg-stitch=stitcher.__main__:main',
],
},
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3'
],
author = 'Vitalis Salis, Giorgos Drosos',
author_email = '[email protected], [email protected]'
)
if __name__ == '__main__':
setup_package()