-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·49 lines (44 loc) · 1.31 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
49
#! /usr/bin/env python
import os
import glob
from setuptools import setup, find_packages
long_desc=""
try:
long_desc=open("README.md").read(),
#Try and convert the readme from markdown to pandoc
from pypandoc import convert
long_desc = convert("README.md", 'rst')
except:
long_desc="FPGA core/image generator and FPGA communiation"
setup(
name='nysa',
version='0.8.6',
description='FPGA core/image generator and FPGA communication',
author='Cospan Design',
author_email='[email protected]',
packages=find_packages('.'),
url="http://nysa.cospandesign.com",
package_data={'' : ["*.json", "*.txt, *.md"]},
data_files=[
],
include_package_data = True,
long_description=long_desc,
scripts=[
"bin/nysa"
],
entry_points = {
'console_scripts': ['nysa=nysa.tools.nysa_cli:main']
},
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"License :: OSI Approved :: MIT License",
"Environment :: Console",
"Programming Language :: Python :: 2.7",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Intended Audience :: Education",
],
keywords="FPGA",
license="GPL"
)