-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (38 loc) · 1.39 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
#!python
# -*- coding: utf-8 -*-
"""
This is the setup for the biosim package
"""
__author__ = 'Therese Knapskog and Astrid Moum'
__email__ = '[email protected] and [email protected]'
from setuptools import setup
import codecs
import os
def read_readme():
current_path = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(current_path, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
return long_description
setup(
# Basic information
name='BIOSIM G19',
version='0.1.0',
# Packages to include
packages=['biosim'],
# Metadata
description='A Simulation of the Ecosystem of Rossumoya written in Python',
long_description=read_readme(),
author='Therese Knapskog and Astrid Moum, NMBU',
author_email='[email protected] and [email protected]',
url='https://gitlab.com/nmbu.no/emner/inf200/h2020/januaryblock/dga5/g19_knapskog_moum',
keywords='biosim simulation',
requires=['numpy', 'matplotlib', 'math', 'operator', 'os', 'pytest', 'random', 'scipy.stats', 'subprocess'],
license='MIT License',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Science :: Stochastic processes',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
]
)