aboutsummaryrefslogblamecommitdiffstats
path: root/pyproject.toml
blob: 34b6be8e7f9d217ec330276998c19b956cfbcd63 (plain) (tree)
1
2
3
4
5
6
7
8
9
              


                                 


                              

                 
                 
           
                                                   

                                                              
                

                      
                             
 
                    
                         









                                            
                                                 


                 
                 

                                                 








                                                                
                           





                              
                    
                 

                         


                    
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project.scripts]
datamaps = 'datamaps.main:cli'

[project]
name = "datamaps"
version = "1.1.9"
authors = [
    { name="Matthew Lemon", email="y@yulqen.org" },
]
description='Collect and clean data using Excel spreadsheets.'
dependencies = [
    'click',
    'python-dateutil',
    'bcompiler-engine>=1.1.7'
]
readme = "README.md"
requires-python = ">=3.7"
classifiers=[
    "Environment :: Console",
    "Intended Audience :: Other Audience",
    "Programming Language :: Python :: 3.7",
    "Programming Language :: Python :: 3.8",
    "Programming Language :: Python :: 3.9",
    "Topic :: Text Processing",
]

[project_urls]
"Homepage" = 'https://github.com/yulqen/datamaps'

[tool.poetry]
name = "datamaps"
version = "1.1.7"
homepage = "https://github.com/yulqen/datamaps"
repository = "https://github.com/yulqen/datamaps"
license = "MIT"
readme = "README.md"
description = "Collect and clean data using Excel spreadsheets."
authors = ["Matthew Lemon <matt@matthewlemon.com>"]

[tool.poetry.dependencies]
python = "^3.7.0"
python-dateutil = "^2.8.1"
click = "^7.1.2"
bcompiler-engine = "^1.1.5"

[tool.poetry.dev-dependencies]
pytest = "^5.4.1"
pytest-cov = "^2.7.1"
coverage = "^5.1"
nox = "^2019.11.9"
pyinstaller = "^4.2"
wheel = "^0.34.2"
pefile = "^2019.4.18"
pywin32-ctypes = "^0.2.0"

[tools.black]
max-length-length=88