This repository was archived by the owner on Oct 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (43 loc) · 1.27 KB
/
Copy pathsetup.py
File metadata and controls
46 lines (43 loc) · 1.27 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
40
41
42
43
44
45
46
# -*- coding: UTF-8 -*-
import setuptools
from distutils.core import setup
# http://stackoverflow.com/a/7071358/735926
import re
VERSIONFILE='didel/__init__.py'
verstrline = open(VERSIONFILE, 'rt').read()
VSRE = r'^__version__\s+=\s+[\'"]([^\'"]+)[\'"]'
mo = re.search(VSRE, verstrline, re.M)
if mo:
verstr = mo.group(1)
else:
raise RuntimeError("Unable to find version string in %s." % VERSIONFILE)
setup(
name='didelcli',
version=verstr,
author='Baptiste Fontaine',
author_email='b@ptistefontaine.fr',
packages=['didel'],
url='https://github.com/bfontaine/didelcli',
license=open('LICENSE', 'r').read(),
description='Didel command-line tool',
long_description=open('README.rst', 'r').read(),
install_requires=[
'beautifulsoup4 >= 4.3.2',
'lxml == 3.4.2',
'ordereddict == 1.1',
'requests >= 2.4.2',
],
classifiers=[
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
entry_points={
'console_scripts':[
'didel = didel.cli:run'
]
},
)