-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 820 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 820 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
25
26
27
from setuptools import setup, find_packages
__VERSION__ = '0.0.2'
setup(
name='rsutils',
version=__VERSION__,
description="A bunch of utilities for Python. Built with :heart: by Reckonsys ", # NOQA
long_description="Core utilitties",
url='https://github.com/reckonsys/rsutils_python',
author='dhilipsiva',
author_email='dhilipsiva@pm.me',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
keywords='rsutils reckonsys python',
packages=find_packages(),
entry_points='',
install_requires=[]
)