forked from lepisma/pipwin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (42 loc) · 1.12 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open("README.rst") as readme_file:
readme = readme_file.read()
requirements = [
"argparse",
"requests",
"robobrowser",
"pyprind",
"six",
"js2py",
"packaging",
]
setup(
name="pipwin",
version="0.3.3",
description="pipwin installs compiled python binaries on windows provided by Christoph Gohlke",
long_description=readme,
author="lepisma",
author_email="[email protected]",
url="https://github.com/lepisma/pipwin",
include_package_data=True,
install_requires=requirements,
packages=[
"pipwin",
],
license="BSD",
zip_safe=False,
keywords="pipwin windows binaries",
entry_points={
"console_scripts": ["pipwin=pipwin.command:main"],
},
classifiers=[
"Development Status :: 3 - Alpha", "Environment :: Console",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3"
])