-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (35 loc) · 1.59 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
41
42
43
44
45
46
47
48
import setuptools
if __name__ == '__main__':
with open("requirements.txt") as rf:
setuptools.setup(
name='condarepo',
version='0.2.0',
packages=['condarepo'],
include_package_data=True,
# This automatically detects the packages in the specified
# (or current directory if no directory is given).
#packages=setuptools.find_packages(),
zip_safe=False,
author='Giampaolo Cimino',
author_email='[email protected]',
description='Simple mirroring script for Anaconda package repository',
long_description='''Simple mirroring script for Anaconda package repository with full multi-process support''',
# The license should be one of the standard open source
# licenses: https://opensource.org/licenses/alphabetical
license='Apache-2.0',
install_requires=rf.readlines(),
classifiers=[
'Development Status :: 3 - Alpha',
# Indicate who your project is intended for
'Intended Audience :: System Administrators',
'Topic :: System :: Software Distribution',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords='python anaconda conda repository mirror multi-process parallel',
entry_points={
'console_scripts': [
'condarepo = condarepo.main:main',
]
}
)