-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (29 loc) · 1.02 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
import io
from os import path
from setuptools import setup
version = {}
with open('openafpm_cad_core/_version.py') as fp:
exec(fp.read(), version)
current_dir = path.abspath(path.dirname(__file__))
with io.open(path.join(current_dir, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='openafpm-cad-core',
description='Contains OpenAFPM wind turbine CAD model.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/gbroques/openafpm-cad-core',
author='G Roques',
version=version['__version__'],
packages=['openafpm_cad_core'],
# Incude data files specified in MANIFEST.in file.
include_package_data=True,
install_requires=[
'freecad-to-obj==0.2.0'
],
classifiers=[
# Full List: https://pypi.org/pypi?%3Aaction=list_classifiers
'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)',
'Programming Language :: Python :: 3 :: Only'
]
)