-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (33 loc) · 1.01 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
import os
from setuptools import setup, find_packages
version = '0.1'
def read(*rnames):
return open(
os.path.join('.', *rnames)
).read()
long_description = "\n\n".join(
[read('README.rst'),
read('docs', 'HISTORY.txt'),
]
)
setup(name='memopolutils',
version=version,
description="Python utils for accessing memopol.lqdn.fr datas",
long_description=long_description,
# Get more strings from
# http://pypi.python.org/pypi?:action=list_classifiers
classifiers=[
"Environment :: Web Environment",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='python memopol political memory',
author='Sylvain Boureliou',
author_email='[email protected]',
url='https://github.com/sylvainb/memopolutils',
license='GPL',
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
)