-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
executable file
·49 lines (45 loc) · 1.57 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
#!/usr/bin/env python
"""The setup script to generate dist files for PyPi.
To upload the release to PyPi:
$ ./setup.py sdist bdist_wheel --universal
$ twine upload dist/*
"""
from setuptools import setup
from cppdep import cppdep
setup(
name="cppdep",
version=cppdep.VERSION,
maintainer="Olzhas Rakhimov",
maintainer_email="[email protected]",
description="Dependency analyzer for C/C++ projects",
download_url="https://github.com/rakhimov/cppdep",
license="GPLv3+",
install_requires=[
"networkx",
"pydot",
"pydotplus",
"PyYAML",
"PyKwalify>=1.6.0"
],
keywords=["c++", "c", "static analysis", "dependency analysis"],
url="http://github.com/rakhimov/cppdep",
packages=["cppdep"],
package_data={"cppdep": ["config_schema.yml"]},
entry_points={"console_scripts": ["cppdep = cppdep.__main__:main"]},
long_description=open("README.rst").read(),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Quality Assurance",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: C",
"Programming Language :: C++",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Environment :: Console",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5"
],
)