-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·40 lines (35 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
39
40
from setuptools import setup
import os
def read_file(*paths):
here = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(here, *paths)) as f:
return f.read()
long_description = read_file('README.rst')
setup(
name='scott-freeze',
version='0.1',
description='Utility for managing requirements files',
long_description=long_description,
author='onefinestay',
author_email='[email protected]',
url='http://github.com/onefinestay/scott-freeze',
py_modules=['scott_freeze'],
entry_points={
'console_scripts': [
'scott-freeze=scott_freeze:main',
],
},
zip_safe=False,
license='Apache License, Version 2.0',
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Programming Language :: Python :: 2.7",
"Intended Audience :: Developers",
]
)