-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (40 loc) · 1008 Bytes
/
setup.py
File metadata and controls
42 lines (40 loc) · 1008 Bytes
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
from setuptools import setup, find_packages
import re
with open('version', 'r') as properties_file:
properties = properties_file.read()
version = re.search(r'version=([0-9.\-A-Za-z]+)', properties).group(1)
setup(
name='basic-lib',
version=version,
description="Python project",
classifiers=[],
keywords='',
author='Duncan Buck',
author_email='dncnbuck@gmail.com',
url='https://github.com/dncnbuck/python-setup',
license='',
packages=find_packages(exclude=['ez_setup', 'test']),
package_data={
'lib': []
},
include_package_data=True,
zip_safe=False,
install_requires=[
# specify your requirements here:
'numpy',
'scikit-learn==0.16.0',
],
extras_require={
'dev': [
'flake8',
'coverage',
'pytest',
'pytest-cov',
]
},
entry_points={
'console_scripts': [
'basic-lib = lib.__main__:main',
]
},
)