-
Notifications
You must be signed in to change notification settings - Fork 68
/
setup.py
38 lines (33 loc) · 1.14 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
original_dir = os.getcwd()
os.chdir(os.path.dirname(os.path.abspath(__file__)))
try:
setup(
name="Introspy-Analyzer",
version=__import__("introspy").__version__,
packages=find_packages(),
include_package_data=True,
zip_safe=False,
# metadata for upload to PyPI
author=__import__("introspy").__author__,
author_email="[email protected]",
description="Introspy-Analyzer",
license="GPL",
keywords="ios android",
url="https://isecpartners.github.io/Introspy-iOS/",
long_description=open("README.md").read(),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GPL License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Topic :: Software Development :: Libraries :: Python Modules'
],
platforms='All',
)
finally:
os.chdir(original_dir)