1
+ from distutils .core import setup
2
+ setup (
3
+ name = 'validium' , # How you named your package folder (MyLib)
4
+ packages = ['validium' ], # Chose the same as "name"
5
+ version = '0.1.0' , # Start with a small number and increase it with every change you make
6
+ license = 'MIT' , # Chose a license from here: https://help.github.com/articles/licensing-a-repository
7
+ description = 'a utility library for generating chunks of time within a datetime range' , # Give a short description about your library
8
+ author = 'Jason Yung' ,
9
+ author_email = '[email protected] ' ,
10
+ url = 'https://github.com/json2d/validium' , # Provide either the link to your github or to your website
11
+ download_url = 'https://github.com/json2d/validium/archive/v0.1.0.tar.gz' ,
12
+ keywords = ['datetime' , 'interval' , 'chunks' ], # Keywords that define your package best
13
+ install_requires = [],
14
+ classifiers = [
15
+ 'Development Status :: 3 - Alpha' , # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
16
+ 'Intended Audience :: Developers' , # Define your audience
17
+ 'Topic :: Utilities' ,
18
+ 'License :: OSI Approved :: MIT License' , # Again, pick a license
19
+ 'Programming Language :: Python :: 3' , # Specify which pyhton versions that you want to support
20
+ 'Programming Language :: Python :: 3.4' ,
21
+ 'Programming Language :: Python :: 3.5' ,
22
+ 'Programming Language :: Python :: 3.6' ,
23
+ 'Programming Language :: Python :: 3.7' ,
24
+ 'Programming Language :: Python :: 3.8' ,
25
+ ],
26
+ )
0 commit comments