-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
39 lines (36 loc) · 1.17 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
# -*- coding: utf-8 -*-
from distutils.core import setup
from setuptools import find_packages
with open('README.rst') as readme:
long_description = readme.read()
with open('requirements.txt') as reqs:
install_requires = [
line for line in reqs.read().split('\n') if (line and not
line.startswith('--'))
]
setup(
name='autoindex',
version=__import__('autoindex').__version__,
author=u'Bruno Renié',
author_email='bruno@renie.fr',
packages=find_packages(),
include_package_data=True,
url='https://github.com/brutasse/autoindex',
license='BSD',
description='A partial PyPI mirror and private index server',
long_description=long_description,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
],
zip_safe=False,
install_requires=install_requires,
scripts=[
'scripts/autoindex',
]
)