-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (37 loc) · 1.22 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
# -*- coding: utf-8 -*-
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# Get the long description from the README file
import os
import codecs
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open('README.rst', encoding='utf-8') as f:
long_description = f.read()
# setup arguments
setup(
name='fixif.webserver',
#namespace='fixif',
version='0.2',
description='webserver for the FiXiF project',
long_description=long_description,
url='https://github.com/FiXiF/webserver',
author='T. Hilaire',
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Embedded Systems',
'Topic :: Software Development :: Code Generators',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
keywords='fixed-point arithmetic',
packages=find_packages(exclude=['tests']),
install_requires=['bottle', 'jinja2'],
project_urls={
'Bug Reports': 'https://github.com/FiXiF/webserver/issues',
'Source': 'https://github.com/FiXiF/webserver/',
},
)