-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
29 lines (27 loc) · 985 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
import os
import sys
import setuptools
# Some filesystems don't support hard links. Using the power of
# monkeypatching to fix the problem.
import os, shutil
os.link = shutil.copy
setuptools.setup(
name = 'siphash',
version = '0.0.1',
description = 'siphash - python siphash implementation',
author = 'Marek Majkowski',
author_email = '[email protected]',
url = 'http://github.com/majek/pysiphash#readme',
packages = ['siphash'],
platforms = ['any'],
license = 'MIT',
classifiers = ['Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.2",
],
zip_safe = True,
)