forked from WIPACrepo/file_catalog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (36 loc) · 1.21 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
import sys
from setuptools import setup
from os import path
import file_catalog
here = path.abspath(path.dirname(__file__))
long_description = open(path.join(here, 'README.md')).read()
install_requires = [l.strip() for l in open(path.join(here, 'requirements.txt'))]
setup(
name='file_catalog',
version=file_catalog.__version__,
description='File catalog',
long_description=long_description,
url='https://github.com/WIPACrepo/file_catalog',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords='file catalog',
packages=['file_catalog'],
install_requires=install_requires,
package_data={
'file_catalog':['data/www/*','data/www_templates/*'],
},
entry_points={
'console_scripts':[
'file_catalog=file_catalog.__main__:main',]
}
)