-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 789 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import os
from setuptools import setup
version_path = os.path.join(os.path.abspath(os.path.dirname(__file__)),
'freecad', 'i10g', 'version.py')
with open(version_path) as fp:
exec(fp.read())
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
setup(name='freecad.i10g',
version=str(__version__),
packages=['freecad',
'freecad.i10g'],
maintainer='Anderson Antunes',
maintainer_email='anderson.utf@gmail.com',
url='https://github.com/anderson-/inbetweening',
description='FreeCAD Simple Animation Workbench',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=['numpy'],
include_package_data=True)