forked from openalea-incubator/impulse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (40 loc) · 976 Bytes
/
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
49
50
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# {# pkglts, pysetup.kwds
# format setup arguments
from setuptools import setup, find_packages
short_descr = "belle petite description"
readme = open('README.rst').read()
history = open('HISTORY.rst').read()
# find packages
pkgs = find_packages('src')
setup_kwds = dict(
name='impulse',
version="0.0.1",
description=short_descr,
long_description=readme + '\n\n' + history,
author="moi",
author_email="moi@email.com",
url='https://github.com/moi/impulse',
license='cecill-c',
zip_safe=False,
packages=pkgs,
package_dir={'': 'src'},
setup_requires=[
"pytest-runner",
],
install_requires=[
],
tests_require=[
"pytest",
"pytest-mock",
],
entry_points={},
keywords='',
)
# #}
# change setup_kwds below before the next pkglts tag
# do not change things below
# {# pkglts, pysetup.call
setup(**setup_kwds)
# #}