forked from francois-marie/StarExpanders
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (36 loc) · 736 Bytes
/
setup.py
File metadata and controls
44 lines (36 loc) · 736 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
43
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
# Package meta-data.
NAME = 'StarExpanders'
DESCRIPTION = ''
URL = ''
EMAIL = ''
AUTHOR = ''
REQUIRES_PYTHON = '>=3.6.0'
VERSION = None
REQUIRED = [
'cqc',
'numpy',
'scipy',
'twisted',
'networkx',
'flake8',
'click',
'daemons'
'simulaqron'
]
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name=NAME,
description=DESCRIPTION,
author=AUTHOR,
author_email=EMAIL,
packages=find_packages(exclude=('tests')),
install_requires=REQUIRED,
zip_safe=False,
include_package_data=True,
)