-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
37 lines (32 loc) · 1.07 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, find_packages
with open('rodlayout/version.py') as fin:
data = {}
exec(fin.read(), data)
version = data['__version__']
with open('README.md') as fin:
long_description = fin.read()
setup(
name='rodlayout',
version=version,
author="Niels Buwen",
author_email="dev@niels-buwen.de",
description="A python wrapper for the Skill objects in virtuoso",
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(),
install_requires=[
'simple-geometry',
'skillbridge'
],
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Topic :: Software Development",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
]
)