This repository was archived by the owner on Sep 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (35 loc) · 1.24 KB
/
setup.py
File metadata and controls
39 lines (35 loc) · 1.24 KB
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
import os
from setuptools import find_packages
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.rst')).read()
DESCRIPTION = README
REQUIRES = ()
setup(name='Basket',
version='1.0',
description='A local static PyPI repository builder',
long_description='\n\n'.join((README, CHANGES)),
classifiers=(
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Topic :: System :: Software Distribution',
),
author='Damien Baty',
author_email='damien.baty.remove@gmail.com',
url='http://packages.python.org/Basket',
keywords='eggs easy_install pip package static repository pypi',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=REQUIRES,
test_suite='basket.tests',
entry_points='''
[console_scripts]
basket = basket.main:main
''')