-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (43 loc) · 1.36 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
38
39
40
41
42
43
44
45
46
47
48
from setuptools import setup, find_packages
from io import open
from os import path
from pymoa import __version__
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
URL = 'https://github.com/matham/pymoa'
setup(
name='pymoa',
version=__version__,
author='Matthew Einhorn',
author_email='moiein2000@gmail.com',
license='MIT',
description='Scientific platform for running experiments.',
long_description=long_description,
url=URL,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering',
'Topic :: System :: Hardware',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
packages=find_packages(),
install_requires=[
'kivy', 'trio', 'pymoa_remote', 'kivy_trio', 'tree_config'],
extras_require={
'dev': [
'pytest>=3.6', 'pytest-cov', 'flake8', 'sphinx-rtd-theme',
'coveralls', 'pytest-trio', 'sphinxcontrib-trio'],
},
package_data={
'pymoa':
[]},
project_urls={
'Bug Reports': URL + '/issues',
'Source': URL,
},
)