forked from The-OpenROAD-Project/EDAAC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (38 loc) · 1.4 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
from setuptools import setup, find_packages
# version
version = {}
with open('edaac/version.py', 'r') as f:
exec(f.read(), version)
download_url = 'https://github.com/abdelrahman/EDAAC/archive/v_' + version['__version__'] + '.tar.gz'
# description
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name = 'edaac',
packages = find_packages(),
version = version['__version__'],
license = 'BSD-3 License',
description = 'Your day-to-day EDA analytics tool',
author = 'Abdelrahman Hosny',
author_email = '[email protected]',
url = 'https://github.com/abdelrahmanhosny/EDAAC',
download_url = download_url,
keywords = ['EDA', 'Electronic', 'Design', 'Automation', 'Data', 'Analytics'],
install_requires=[
'mongoengine==0.18.2',
'pymongo==3.10.0',
'six==1.13.0',
],
classifiers=[
'Development Status :: 3 - Alpha', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
long_description = long_description,
long_description_content_type = 'text/markdown',
)