-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (32 loc) · 1.05 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
from setuptools import setup
import codecs
import os
def read_readme():
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
return long_description
setup(
# Basic information
name='BioSim',
version='0.1.0',
# Packages to include
packages=['biosim'],
# Required packages not included in Python standard library
requires=['pytest'],
# Metadata
description='A Simulation of Ecosystem of an island',
long_description=read_readme(),
author='Bishnu Poudel, NMBU',
author_email='[email protected]',
url='https://github.com/vsnupoudel/INF200_TA_Test',
keywords='simulation ',
license='MIT License',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Science :: Stochastic processes',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
]
)