-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 698 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 698 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
import platform
setup(name='mymodules',
version='0.0',
description='Miscelanous modules for me',
long_description="""This file contains several miscelanous modules for me
""",
classifiers=[
'Development Status :: 0.0',
'License :: GPL-3.0',
'Programming Language :: Python :: 3.7',
],
python_requires='>=3.7',
# url='https://github.com/grumpfou/RFigure',
# author='Renaud Dessalles',
# author_email='see on my website',
license='GPL-3.0',
py_modules=['RMatplotlib','RVideoCreator'],
# include_package_data=True,
# install_requires=[],
)