forked from jaraco/pywin32-ctypes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (27 loc) · 874 Bytes
/
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
import os
from setuptools import setup, find_packages
HERE = os.path.dirname(__file__)
version = open(
os.path.join(HERE, 'VERSION')).read().strip()
filename = os.path.join(HERE, 'win32ctypes', 'version.py')
with open(filename, 'w') as handle:
handle.write('__version__="%s"\n' % version)
setup(
name='pywin32-ctypes',
version=version,
url='https://github.com/enthought/pywin32-ctypes',
author='Enthought Inc',
author_email='[email protected]',
packages=find_packages(),
license="BSD",
classifiers=[
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
],
use_2to3=True,
zip_safe=False,
test_suite='win32ctypes.tests',
)