forked from symstore/symstore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·34 lines (32 loc) · 973 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·34 lines (32 loc) · 973 Bytes
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
#!/usr/bin/env python
import setuptools
from os import path
VERSION = open(path.join("symstore", "VERSION")).read().strip()
setuptools.setup(
name="symstore",
version=VERSION,
description="publish PDB and PE files to symbols store",
long_description=open("README.rst", "r").read(),
url="https://github.com/elmirjagudin/symstore",
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
],
keywords="development symstore pdb",
packages=["symstore"],
package_data={"symstore": ["VERSION"]},
entry_points={
"console_scripts": ["symstore=symstore.command_line:main"],
},
extras_require={
"develop":
[
"coverage",
"flake8",
"mock"
]
}
)